home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Language
/
Compiler
/
option.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-16
|
664b
|
37 lines
/*
* @(#)option.h 1.5 6/29/88
*/
#ifndef option_h
#define option_h
extern int optioninvokequeue,
optionallocateregisters,
optioncomment,
optionnilspace,
optionlocals,
optionknowct,
optionview,
optioninline,
optiondebugstack,
optioncreateonstack;
#ifndef lint
#if defined(__ANSI__) || defined(__GNUC__)
# define OPTION(t, value) \
(option##t == value)
# define IFOPTION(t, value) \
if (option##t == value)
#else
# define OPTION(t, value) \
(option/**/t == value)
# define IFOPTION(t, value) \
if (option/**/t == value)
#endif
#else
# define IFOPTION(t, value) \
if (value)
# define OPTION(t, value) \
(value)
#endif
#endif